home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / readline-common.postinst < prev    next >
Text File  |  2007-10-02  |  348b  |  17 lines

  1. #! /bin/sh -e
  2.  
  3. install_from_default() {
  4.   if [ ! -f $2 ]; then
  5.     cp -p $1 $2
  6.   fi
  7. }
  8.  
  9. if [ "$1" = "configure" ] && [ "$2" = "" ]; then
  10.   install_from_default /usr/share/readline/inputrc /etc/inputrc
  11. fi
  12.  
  13. install-info --quiet --section "Miscellaneous" "Miscellaneous" \
  14.   --description="GNU Readline Library API" /usr/share/info/rluserman.info.gz
  15.  
  16.  
  17.